From 80cf3085eefdd07fe9125de9b870b187d79d18e7 Mon Sep 17 00:00:00 2001 From: robertl Date: Mon, 20 Jun 2005 22:16:44 +0000 Subject: [PATCH] Avoid sign warning. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@1204 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/garmin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/garmin.c b/gpsbabel/garmin.c index a5296f229..935266c29 100644 --- a/gpsbabel/garmin.c +++ b/gpsbabel/garmin.c @@ -696,7 +696,7 @@ d103_symbol_from_icon_number(unsigned int n) static int d103_icon_number_from_symbol(const char *s) { - int i; + unsigned int i; if (NULL == s) { return 0; -- 2.30.2